home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh
- #
- # Front-end for LaTeX
- #
- # We add the directory where the tfm files for the Go diagram font
- # live to the systems' TEXFONTS path.
- #
- # Author: Jan van der Steen
- # Date : Fri Aug 30 11:58:52 MET DST 1991
-
- usage="latex file.tex"
-
- #
- # Where is the real LaTeX program installed?
- #
- LaTeX=/usr/local/TeX/bin/latex
-
- #
- # Where does LaTeX look for the systems tfm files?
- #
- SYSTFM=".:/usr/local/TeX/lib/tfm:/usr/local/TeX/lib/ps_tfm"
-
- #
- # Where are the Go diagram font tfm files?
- #
- GOTFM=/ufs/jansteen/games2/go/TeX/Hanna/Go_tfm
-
- TEXFONTS=${SYSTFM}:${GOTFM}; export TEXFONTS
-
- #
- # Execute LaTeX
- #
- exec ${LaTeX} $*
-